.about-page__section {
  --about-text: #333333;
  --about-muted-border: #d9d9d9;
  --about-accent: #ec884e;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.about-page__content {
  margin-top: 8.5rem;
}

.about-page__subheading-left {
  color: #333333;
  font-family: "Zen Kaku Gothic", sans-serif;
  width: min(94%, 980px);
  margin: 0 auto 1.5rem;
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
}

.about-page__subheading-right {
  color: #333333;
  font-family: "Zen Kaku Gothic", sans-serif;
  width: min(94%, 980px);
  margin: 0 auto 1.5rem;
  position: relative;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.about-page__photo-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: #ddd;
}

.about-page__photo {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
}

/* SP */
@media (max-width: 768px) {
  .about-page__photo-full {
    margin-top: 2rem;
    margin-bottom: 1.75rem;
  }

  .about-page__photo {
    height: 200px;      
    object-fit: cover;
    object-position: center center;
  }
}

@media (min-width: 404px) and (max-width: 760px) {
  .about-page__photo {
    height: 280px;
    object-fit: cover;
    object-position: center 32%;
  }
}

/* 本文 */
.about-page__lead {
  font-weight: 450;
  font-size: 1.2rem;
  max-width: 80rem;
  margin: 0 auto 2.5rem;
  color: var(--about-text);
  line-height: 2;
  text-align: left;
}



.about-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 38px;
  align-items: start;
  padding: 50px 24px;
  border-bottom: 1px solid var(--about-muted-border);
}

.about-row:first-child {
  border-top: 1px solid var(--about-muted-border);
}

.about-row__label {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--about-text);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.about-row__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 5px;
  height: 1.2em;
  border-radius: 999px;
  background: var(--about-accent);
}

.about-row__value {
  color: var(--about-text);
  font-size: 1.9rem;
  line-height: 1.8;
  text-align: left;
  padding-left: 23px;
}

.about-row__value p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin: 0;
}

.about-row__value p + p {
  margin-top: 0.3em;
}

.about-row__value a {
  color: inherit;
  text-decoration: none;
}

.about-row__value a:hover {
  opacity: 0.8;
}

/* SP */
@media (max-width: 768px) {
  .about-page__section {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .about-page__lead {
    max-width: 80rem;
    font-size: 1rem;
    line-height: 1.9;
  }

  .about-row {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 22px 16px;
  }

  .about-row__label {
    font-size: 1.2rem;
  }

  .about-row__value {
    padding-left: 0;
    font-size: 1.05rem;
    line-height: 1.8;
  }
}